home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gp_msdos.c < prev    next >
C/C++ Source or Header  |  1995-11-02  |  4KB  |  124 lines

  1. /* Copyright (C) 1992, 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gp_msdos.c */
  20. /* Common platform-specific routines for MS-DOS (any compiler) */
  21. #include "stdio_.h"
  22. #include "string_.h"        /* for strerror */
  23. #include "dos_.h"
  24. #include "gstypes.h"
  25. #include "gsmemory.h"        /* for gp.h */
  26. #include "gp.h"
  27.  
  28. /* ------ Miscellaneous ------ */
  29.  
  30. /* Get the string corresponding to an OS error number. */
  31. /* This is compiler-, not OS-, specific, but it is ANSI-standard and */
  32. /* all MS-DOS and MS Windows compilers support it. */
  33. const char *
  34. gp_strerror(int errnum)
  35. {    return strerror(errnum);
  36. }
  37.  
  38. /* ------ Date and time ------ */
  39.  
  40. /* Read the current time (in seconds since Jan. 1, 1980) */
  41. /* and fraction (in nanoseconds). */
  42. void
  43. gp_get_realtime(long *pdt)
  44. {    union REGS osdate, ostime;
  45.     long idate;
  46.     static const int mstart[12] =
  47.        { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 };
  48.     osdate.h.ah = 0x2a;        /* get date */
  49.     intdos(&osdate, &osdate);
  50. #define da_year rshort.cx
  51. #define da_mon h.dh
  52. #define da_day h.dl
  53.     ostime.h.ah = 0x2c;        /* get time */
  54.     intdos(&ostime, &ostime);
  55. #define ti_hour h.ch
  56. #define ti_min h.cl
  57. #define ti_sec h.dh
  58. #define ti_hund h.dl
  59.     idate = (long)osdate.da_year * 365 +
  60.           (                /* intervening leap days */
  61.          ((osdate.da_year + 1979)/4 - 1979/4) +
  62.          (1979/100 - (osdate.da_year + 1979)/100) +
  63.          ((osdate.da_year + 1979)/400 - 1979/400) +
  64.          mstart[osdate.da_mon - 1] +    /* month is 1-origin */
  65.          osdate.da_day - 1);        /* day of month is 1-origin */
  66.     idate += (2 < osdate.da_mon
  67.           && (osdate.da_year % 4 == 0
  68.               && ((osdate.da_year + 1980) % 100 != 0
  69.               || (osdate.da_year + 1980) % 400 == 0)));
  70.     pdt[0] =
  71.         ((idate * 24 + ostime.ti_hour) * 60 + ostime.ti_min) * 60 +
  72.         ostime.ti_sec;
  73.     pdt[1] = ostime.ti_hund * 10000000;
  74. }
  75.  
  76. /* Read the current user CPU time (in seconds) */
  77. /* and fraction (in nanoseconds).  */
  78. void
  79. gp_get_usertime(long *pdt)
  80. {    gp_get_realtime(pdt);    /* Use an approximation for now.  */
  81. }
  82.  
  83. /* ------ Console management ------ */
  84.  
  85. /* Answer whether a given file is the console (input or output). */
  86. /* This is not a standard gp procedure, */
  87. /* but the MS Windows configuration needs it, */
  88. /* and other MS-DOS configurations might need it someday. */
  89. int
  90. gp_file_is_console(FILE *f)
  91. {    union REGS regs;
  92. #ifdef __DLL__
  93.     if ( f == NULL )
  94.         return 1;
  95. #else
  96.     if ( f == NULL )
  97.         return 0;
  98. #endif
  99.     regs.h.ah = 0x44;    /* ioctl */
  100.     regs.h.al = 0;        /* get device info */
  101.     regs.rshort.bx = fileno(f);
  102.     intdos(®s, ®s);
  103.     return ((regs.h.dl & 0x80) != 0 && (regs.h.dl & 3) != 0);
  104. }
  105.  
  106. /* ------ Screen management ------ */
  107.  
  108. /* Get the environment variable that specifies the display to use. */
  109. const char *
  110. gp_getenv_display(void)
  111. {    return NULL;
  112. }
  113.  
  114. /* ------ File names ------ */
  115.  
  116. /* Define the default scratch file name prefix. */
  117. const char gp_scratch_file_name_prefix[] = "_temp_";
  118.  
  119. /* Define the name of the null output file. */
  120. const char gp_null_file_name[] = "nul";
  121.  
  122. /* Define the name that designates the current directory. */
  123. const char gp_current_directory_name[] = ".";
  124.